home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / machserver / include / user / bstring.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-11-12  |  1.1 KB  |  33 lines

  1. /*
  2.  * bstring.h --
  3.  *
  4.  *    Declarations of BSD library procedures for byte manipulation.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  *
  15.  * $Header: /r3/kupfer/spriteserver/include/user/RCS/bstring.h,v 1.3 91/11/11 23:07:09 kupfer Exp $ SPRITE (Berkeley)
  16.  */
  17.  
  18. #ifndef _BSTRING
  19. #define _BSTRING
  20.  
  21. #include <cfuncproto.h>
  22. #include <sys/types.h>
  23.  
  24. extern int    bcmp _ARGS_((_CONST _VoidPtr sourcePtr,
  25.                  _CONST _VoidPtr destPtr,
  26.                  size_t numBytes));
  27. extern void    bcopy _ARGS_((_CONST _VoidPtr sourcePtr, _VoidPtr destPtr,
  28.                   size_t numBytes));
  29. extern void    bzero _ARGS_((_VoidPtr destPtr, size_t numBytes));
  30. extern int    ffs _ARGS_((int i));
  31.  
  32. #endif /* _BSTRING */
  33.